800 |
How can copy and paste the selection to Microsoft Word, any OLE compliant application, as a snapshot
local h,h1,h2,h3,oGantt,var_Bar,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.Template = [HTMLPicture("p1") = "c:\exontrol\images\card.png"] // oGantt.HTMLPicture("p1") = "c:\exontrol\images\card.png" oGantt.Template = [HTMLPicture("p2") = "c:\exontrol\images\sun.png"] // oGantt.HTMLPicture("p2") = "c:\exontrol\images\sun.png" oGantt.AutoDrag = 11 oGantt.LinesAtRoot = 0 oGantt.HasLines = 2 oGantt.ShowFocusRect = false oGantt.DefaultItemHeight = 26 oGantt.Columns.Add("Task") var_Chart = oGantt.Chart var_Chart.ShowNonworkingDates = false var_Chart.FirstVisibleDate = "12/29/2000" // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Chart.LevelCount = 2 var_Bar = var_Chart.Bars.Item("Task") var_Bar.Color = 0x1000000 var_Bar.Height = 18 var_Items = oGantt.Items h = var_Items.AddItem("<img>p1:32</img>Group 1") // var_Items.CellCaptionFormat(h,0) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaptionFormat(h,0) = 1] endwith // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith // var_Items.ItemBold(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBold(h) = True] endwith h1 = var_Items.InsertItem(h,null,"Task 1") var_Items.AddBar(h1,"Task","01/02/2001","01/04/2001","K1") h2 = var_Items.InsertItem(h,null,"Task 2") var_Items.AddBar(h2,"Task","01/05/2001","01/07/2001","K2") var_Items.AddLink("L1",h1,"K1",h2,"K2") // var_Items.Link("L1",12) = "L1" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L1",12) = "L1"] endwith h3 = var_Items.InsertItem(h,null,"Task 3") var_Items.AddBar(h3,"Task","01/08/2001","01/10/2001","K3") var_Items.AddLink("L2",h2,"K2",h3,"K3") // var_Items.Link("L2",12) = "L2" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L2",12) = "L2"] endwith h = var_Items.AddItem("<img>p2:32</img>Group 2") // var_Items.CellCaptionFormat(h,0) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaptionFormat(h,0) = 1] endwith // var_Items.ItemBold(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBold(h) = True] endwith // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith h1 = var_Items.InsertItem(h,null,"Task") var_Items.AddBar(h1,"Task","01/02/2001","01/04/2001","K1") // var_Items.ExpandItem(0) = true with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ExpandItem(0) = True] endwith oGantt.EndUpdate() |
799 |
How can copy and paste the selection to Microsoft Word, any OLE compliant application, as a image
local h,oGantt,rs,var_Chart,var_Columns,var_Columns1,var_HTMLPicture,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Template = [HTMLPicture("p1") = "c:\exontrol\images\card.png"] // oGantt.HTMLPicture("p1") = "c:\exontrol\images\card.png" oGantt.Template = [HTMLPicture("p2") = "c:\exontrol\images\sun.png"] // oGantt.HTMLPicture("p2") = "c:\exontrol\images\sun.png" // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_HTMLPicture = oGantt.HTMLPicture("aka1") oGantt.HeaderHeight = 24 oGantt.DefaultItemHeight = 48 oGantt.DrawGridLines = -2 oGantt.GridLineColor = 0xf0f0f0 oGantt.SelBackMode = 1 oGantt.ColumnAutoResize = false oGantt.ContinueColumnScroll = false rs = new OleAutoClient("ADOR.Recordset") rs.Open("Orders","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGantt\Sample\Access\SAMPLE.MDB",3,3) oGantt.DataSource = rs // oGantt.Columns.Item(0).Def(17) = 1 var_Columns = oGantt.Columns.Item(0) with (oGantt) TemplateDef = [dim var_Columns] TemplateDef = var_Columns Template = [var_Columns.Def(17) = 1] endwith oGantt.Columns.Item(0).FormatColumn = "value + ` <img>p` + (1 + (value mod 3 ) ) + `</img>`" oGantt.Columns.Item(0).Width = 112 // oGantt.Columns.Item(1).Def(0) = 1 var_Columns1 = oGantt.Columns.Item(1) with (oGantt) TemplateDef = [dim var_Columns1] TemplateDef = var_Columns1 Template = [var_Columns1.Def(0) = 1] endwith oGantt.Columns.Item(2).LevelKey = "1" oGantt.Columns.Item(3).LevelKey = "1" oGantt.Columns.Item(4).LevelKey = "1" oGantt.AutoDrag = 10 oGantt.SingleSel = false var_Items = oGantt.Items h = var_Items.ItemByIndex(1) // var_Items.SelectItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectItem(h) = True] endwith h = var_Items.ItemByIndex(2) // var_Items.SelectItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectItem(h) = True] endwith h = var_Items.ItemByIndex(3) // var_Items.SelectItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectItem(h) = True] endwith // var_Items.LockedItemCount(2) = 1 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.LockedItemCount(2) = 1] endwith h = var_Items.LockedItem(2,0) // var_Items.CellCaption(h,1) = "<font ;16>Click the selection and <b>wait to start dragging</b>, and then drop to Microsoft Word, ..." with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "<font ;16>Click the selection and <b>wait to start dragging</b>, and then drop to Microsoft Word, ..."] endwith // var_Items.CellSingleLine(h,1) = false with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellSingleLine(h,1) = False] endwith // var_Items.CellCaptionFormat(h,1) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaptionFormat(h,1) = 1] endwith // var_Items.CellHAlignment(h,1) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHAlignment(h,1) = 1] endwith // var_Items.ItemDivider(h) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 1] endwith // var_Items.ItemDividerLineAlignment(h) = 2 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDividerLineAlignment(h) = 2] endwith oGantt.EndUpdate() |
798 |
How can copy and paste the selection to Microsoft Word, Excel or any OLE compliant application, as a text
|
797 |
Is it possible to change the indentation during the drag and drop
local h,h1,h2,h3,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.AutoDrag = 3 oGantt.LinesAtRoot = 0 oGantt.HasLines = 1 oGantt.HasButtons = 3 oGantt.ShowFocusRect = false oGantt.SelBackMode = 1 oGantt.Columns.Add("Task") var_Chart = oGantt.Chart var_Chart.ShowNonworkingDates = false var_Chart.FirstVisibleDate = "12/29/2000" // var_Chart.PaneWidth(false) = 128 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 128] endwith var_Chart.LevelCount = 2 var_Chart.Bars.Item("Task").Color = 0x1000000 var_Items = oGantt.Items h = var_Items.AddItem("Group 1") // var_Items.ItemBold(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBold(h) = True] endwith // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith h1 = var_Items.InsertItem(h,null,"Task 1") var_Items.AddBar(h1,"Task","01/02/2001","01/04/2001","K1") h2 = var_Items.InsertItem(h1,null,"Task 2") var_Items.AddBar(h2,"Task","01/15/2001","01/17/2001","K4") h2 = var_Items.InsertItem(h1,null,"Task 3") var_Items.AddBar(h2,"Task","01/05/2001","01/07/2001","K2") var_Items.AddLink("L1",h1,"K1",h2,"K2") // var_Items.Link("L1",12) = "L1" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L1",12) = "L1"] endwith h3 = var_Items.InsertItem(h,null,"Task 3") var_Items.AddBar(h3,"Task","01/08/2001","01/10/2001","K3") var_Items.AddLink("L2",h2,"K2",h3,"K3") // var_Items.Link("L2",12) = "L2" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L2",12) = "L2"] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ExpandItem(h1) = true with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.ExpandItem(h1) = True] endwith h = var_Items.AddItem("Group 2") // var_Items.ItemBold(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBold(h) = True] endwith // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith // var_Items.LockedItemCount(2) = 1 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.LockedItemCount(2) = 1] endwith h = var_Items.LockedItem(2,0) // var_Items.CellCaption(h,0) = "Click a row, and move by dragging <b>up, down</b> to change the row's parent or <b>left,right</b> to increase or decrease the indentation." with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,0) = "Click a row, and move by dragging <b>up, down</b> to change the row's parent or <b>left,right</b> to increase or decrease the indentation."] endwith // var_Items.CellSingleLine(h,0) = false with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellSingleLine(h,0) = False] endwith // var_Items.CellCaptionFormat(h,0) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaptionFormat(h,0) = 1] endwith oGantt.EndUpdate() |
796 |
Is it possible to allow moving an item to another, but keeping its indentation
local h,h1,h2,h3,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.AutoDrag = 2 oGantt.LinesAtRoot = 0 oGantt.HasLines = 2 oGantt.ShowFocusRect = false oGantt.Columns.Add("Task") var_Chart = oGantt.Chart var_Chart.ShowNonworkingDates = false var_Chart.FirstVisibleDate = "12/29/2000" // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Chart.LevelCount = 2 var_Chart.Bars.Item("Task").Color = 0x1000000 var_Items = oGantt.Items h = var_Items.AddItem("Group 1") // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith // var_Items.ItemBold(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBold(h) = True] endwith h1 = var_Items.InsertItem(h,null,"Task 1") var_Items.AddBar(h1,"Task","01/02/2001","01/04/2001","K1") h2 = var_Items.InsertItem(h,null,"Task 2") var_Items.AddBar(h2,"Task","01/05/2001","01/07/2001","K2") var_Items.AddLink("L1",h1,"K1",h2,"K2") // var_Items.Link("L1",12) = "L1" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L1",12) = "L1"] endwith h3 = var_Items.InsertItem(h,null,"Task 3") var_Items.AddBar(h3,"Task","01/08/2001","01/10/2001","K3") var_Items.AddLink("L2",h2,"K2",h3,"K3") // var_Items.Link("L2",12) = "L2" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L2",12) = "L2"] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Group 2") // var_Items.ItemBold(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBold(h) = True] endwith // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith oGantt.EndUpdate() |
795 |
How can I change the row's position to another, by drag and drop. Is it possible
local h1,h2,h3,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.AutoDrag = 1 oGantt.Columns.Add("Task") var_Chart = oGantt.Chart var_Chart.ShowNonworkingDates = false var_Chart.FirstVisibleDate = "12/29/2000" // var_Chart.PaneWidth(false) = 64 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 64] endwith var_Chart.LevelCount = 2 var_Chart.Bars.Item("Task").Color = 0x1000000 var_Items = oGantt.Items h1 = var_Items.AddItem("Task 1") var_Items.AddBar(h1,"Task","01/02/2001","01/04/2001","K1") h2 = var_Items.AddItem("Task 2") var_Items.AddBar(h2,"Task","01/05/2001","01/07/2001","K2") var_Items.AddLink("L1",h1,"K1",h2,"K2") // var_Items.Link("L1",12) = "L1" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L1",12) = "L1"] endwith h3 = var_Items.AddItem("Task 3") var_Items.AddBar(h3,"Task","01/08/2001","01/10/2001","K3") var_Items.AddLink("L2",h2,"K2",h3,"K3") // var_Items.Link("L2",12) = "L2" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L2",12) = "L2"] endwith oGantt.EndUpdate() |
794 |
Have seen the RenderType, but do not know what kind of values should I use
local h1,h2,h3,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.Columns.Add("Task") oGantt.BackColorHeader = 0x1000000 var_Chart = oGantt.Chart var_Chart.BackColorLevelHeader = 0x1000000 var_Chart.FirstVisibleDate = "12/29/2000" // var_Chart.PaneWidth(false) = 64 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 64] endwith var_Chart.LevelCount = 2 var_Chart.Bars.Item("Task").Color = 0x1000000 var_Items = oGantt.Items h1 = var_Items.AddItem("Task 1") var_Items.AddBar(h1,"Task","01/02/2001","01/04/2001","K1") h2 = var_Items.AddItem("Task 2") var_Items.AddBar(h2,"Task","01/05/2001","01/07/2001","K2") var_Items.AddLink("L1",h1,"K1",h2,"K2") // var_Items.Link("L1",12) = "L1" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L1",12) = "L1"] endwith h3 = var_Items.AddItem("Task 3") var_Items.AddBar(h3,"Task","01/08/2001","01/10/2001","K3") var_Items.AddLink("L2",h2,"K2",h3,"K3") // var_Items.Link("L2",12) = "L2" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L2",12) = "L2"] endwith oGantt.VisualAppearance.RenderType = -2147483393 oGantt.EndUpdate() |
793 |
I have several columns, but noticed that the filter is using AND between columns, but I need OR clause for filtering. Is it possible
local h,oGantt,var_Chart,var_Column,var_Column1,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Item") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.Filter = "Child 1" var_Column.FilterType = 240 var_Column1 = oGantt.Columns.Add("Date") var_Column1.DisplayFilterButton = true var_Column1.DisplayFilterPattern = false var_Column1.DisplayFilterDate = true var_Column1.FilterList = 9474 /*exShowExclude | exShowFocusItem | exShowCheckBox | exNoItems*/ var_Column1.Filter = Str("12/28/2010") var_Column1.FilterType = 4 oGantt.FilterCriteria = "%0 or %1" oGantt.Template = [Description(23) = "<font ;18><fgcolor=FF0000>or</fgcolor></font>"] // oGantt.Description(23) = "<font ;18><fgcolor=FF0000>or</fgcolor></font>" oGantt.Template = [Description(11) = "<font ;18><fgcolor=FF0000>and</fgcolor></font>"] // oGantt.Description(11) = "<font ;18><fgcolor=FF0000>and</fgcolor></font>" var_Items = oGantt.Items h = var_Items.AddItem("Root 1") // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 1"),1) = "12/27/2010" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 1"),1) = #12/27/2010#] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 2"),1) = "12/28/2010" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 2"),1) = #12/28/2010#] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 1"),1) = "12/29/2010" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 1"),1) = #12/29/2010#] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 2"),1) = "12/30/2010" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 2"),1) = #12/30/2010#] endwith oGantt.ApplyFilter() oGantt.EndUpdate() |
792 |
Is it possible exclude the dates being selected in the drop down filter window
local oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Column = oGantt.Columns.Add("Date") var_Column.SortType = 2 var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.DisplayFilterDate = true var_Column.FilterList = 9474 /*exShowExclude | exShowFocusItem | exShowCheckBox | exNoItems*/ var_Items = oGantt.Items var_Items.AddItem("12/27/2010") var_Items.AddItem("12/28/2010") var_Items.AddItem("12/29/2010") var_Items.AddItem("12/30/2010") var_Items.AddItem("12/31/2010") oGantt.EndUpdate() |
791 |
How can I display a calendar control inside the drop down filter window
local oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Column = oGantt.Columns.Add("Date") var_Column.SortType = 2 var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.DisplayFilterDate = true var_Column.FilterList = 1282 /*exShowFocusItem | exShowCheckBox | exNoItems*/ var_Items = oGantt.Items var_Items.AddItem("12/27/2010") var_Items.AddItem("12/28/2010") var_Items.AddItem("12/29/2010") var_Items.AddItem("12/30/2010") var_Items.AddItem("12/31/2010") oGantt.EndUpdate() |
790 |
Is it possible to include the dates as checkb-boxes in the drop down filter window
local oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Column = oGantt.Columns.Add("Dates") var_Column.SortType = 2 var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = true var_Column.DisplayFilterDate = true var_Column.FilterList = 1280 /*exShowFocusItem | exShowCheckBox*/ var_Column.Filter = "to 12/27/2010" var_Column.FilterType = 4 var_Items = oGantt.Items var_Items.AddItem("12/27/2010") var_Items.AddItem("12/28/2010") var_Items.AddItem("12/29/2010") var_Items.AddItem("12/30/2010") var_Items.AddItem("12/31/2010") oGantt.ApplyFilter() oGantt.EndUpdate() |
789 |
How can I filter items for dates before a specified date
local oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Column = oGantt.Columns.Add("Dates") var_Column.SortType = 2 var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = true var_Column.DisplayFilterDate = true var_Column.FilterList = 1026 /*exShowFocusItem | exNoItems*/ var_Column.Filter = "to 12/27/2010" var_Column.FilterType = 4 var_Items = oGantt.Items var_Items.AddItem("12/27/2010") var_Items.AddItem("12/28/2010") var_Items.AddItem("12/29/2010") var_Items.AddItem("12/30/2010") var_Items.AddItem("12/31/2010") oGantt.ApplyFilter() oGantt.EndUpdate() |
788 |
Is it possible to filter dates
local oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Column = oGantt.Columns.Add("Dates") var_Column.SortType = 2 var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = true var_Column.DisplayFilterDate = true var_Column.FilterList = 1026 /*exShowFocusItem | exNoItems*/ var_Items = oGantt.Items var_Items.AddItem("12/27/2010") var_Items.AddItem("12/28/2010") var_Items.AddItem("12/29/2010") var_Items.AddItem("12/30/2010") var_Items.AddItem("12/31/2010") oGantt.EndUpdate() |
787 |
Is it possible to change the Exclude field name to something different, in the drop down filter window
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 oGantt.Template = [Description(25) = "Leaving out"] // oGantt.Description(25) = "Leaving out" var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.FilterList = 9472 /*exShowExclude | exShowFocusItem | exShowCheckBox*/ var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") oGantt.EndUpdate() |
786 |
How can I display the Exclude field in the drop down filter window
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.FilterList = 9472 /*exShowExclude | exShowFocusItem | exShowCheckBox*/ var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") oGantt.EndUpdate() |
785 |
Is it possible to show and ensure the focused item from the control, in the drop down filter window
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.FilterList = 1280 /*exShowFocusItem | exShowCheckBox*/ var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") // var_Items.SelectItem(var_Items.InsertItem(h,null,"Child 2")) = true with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.SelectItem(InsertItem(h,,"Child 2")) = True] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith oGantt.EndUpdate() |
784 |
Is it possible to show only blanks items with no listed items from the control
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.FilterList = 16386 /*exShowBlanks | exNoItems*/ var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") oGantt.EndUpdate() |
783 |
How can I include the blanks items in the drop down filter window
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.FilterList = 16640 /*exShowBlanks | exShowCheckBox*/ var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") oGantt.EndUpdate() |
782 |
How can I select multiple items in the drop down filter window, using check-boxes
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.FilterList = 256 var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") oGantt.EndUpdate() |
781 |
Is it possible to allow a single item being selected in the drop down filter window
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.FilterList = 128 var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") oGantt.EndUpdate() |
780 |
How can I display no (All) item in the drop down filter window
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 oGantt.Template = [Description(0) = ""] // oGantt.Description(0) = "" var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = true var_Column.FilterList = 2 var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") oGantt.EndUpdate() |
779 |
Is it possible to display no items in the drop down filter window, so only the pattern is visible
local h,oGantt,var_Chart,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.LinesAtRoot = -1 var_Column = oGantt.Columns.Add("Items") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = true var_Column.FilterList = 2 var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") oGantt.EndUpdate() |
778 |
How can I show the child items with no identation
local h,oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.LinesAtRoot = 5 oGantt.Indent = 12 oGantt.HasLines = 2 oGantt.Columns.Add("Default") var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") var_Items.InsertItem(h,null,"Child 3") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") var_Items.InsertItem(h,null,"Child 3") |
777 |
Is there other ways of showing the hierarchy lines (exGroupLinesAtRoot)
|
776 |
Is there other ways of showing the hierarchy lines (exGroupLinesOutside)
local h,oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.LinesAtRoot = 5 oGantt.Indent = 12 oGantt.Columns.Add("Default") var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") var_Items.InsertItem(h,null,"Child 3") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") var_Items.InsertItem(h,null,"Child 3") |
775 |
Is there other ways of showing the hierarchy lines (exGroupLinesInsideLeaf)
|
774 |
Is there other ways of showing the hierarchy lines (exGroupLinesInside)
|
773 |
Is there other ways of showing the hierarchy lines (exGroupLines)
|
772 |
Is it possible background color displayed when the mouse passes over an item
local oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Columns.Add("Def") oGantt.HotBackColor = 0x800000 oGantt.HotForeColor = 0xffffff var_Items = oGantt.Items var_Items.AddItem("Item A") var_Items.AddItem("Item B") var_Items.AddItem("Item C") oGantt.EndUpdate() |
771 |
How can I simulate displaying groups
local h,h1,oGantt,var_Chart,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.HasLines = 0 oGantt.ScrollBySingleLine = true // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns var_Columns.Add("Name") var_Columns.Add("A") var_Columns.Add("B") var_Columns.Add("C") var_Items = oGantt.Items h = var_Items.AddItem("Group 1") // var_Items.CellHAlignment(h,0) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHAlignment(h,0) = 1] endwith // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith // var_Items.ItemDividerLineAlignment(h) = 3 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDividerLineAlignment(h) = 3] endwith // var_Items.ItemHeight(h) = 24 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 24] endwith // var_Items.SortableItem(h) = false with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SortableItem(h) = False] endwith h1 = var_Items.InsertItem(h,null,"Child 1") // var_Items.CellCaption(h1,1) = 1 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,1) = 1] endwith // var_Items.CellCaption(h1,2) = 2 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,2) = 2] endwith // var_Items.CellCaption(h1,3) = 3 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,3) = 3] endwith h1 = var_Items.InsertItem(h,null,"Child 2") // var_Items.CellCaption(h1,1) = 4 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,1) = 4] endwith // var_Items.CellCaption(h1,2) = 5 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,2) = 5] endwith // var_Items.CellCaption(h1,3) = 6 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,3) = 6] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Group 2") // var_Items.CellHAlignment(h,0) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHAlignment(h,0) = 1] endwith // var_Items.ItemDivider(h) = 0 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDivider(h) = 0] endwith // var_Items.ItemDividerLineAlignment(h) = 3 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemDividerLineAlignment(h) = 3] endwith // var_Items.ItemHeight(h) = 24 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 24] endwith // var_Items.SortableItem(h) = false with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SortableItem(h) = False] endwith h1 = var_Items.InsertItem(h,null,"Child 1") // var_Items.CellCaption(h1,1) = 1 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,1) = 1] endwith // var_Items.CellCaption(h1,2) = 2 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,2) = 2] endwith // var_Items.CellCaption(h1,3) = 3 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,3) = 3] endwith h1 = var_Items.InsertItem(h,null,"Child 2") // var_Items.CellCaption(h1,1) = 4 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,1) = 4] endwith // var_Items.CellCaption(h1,2) = 5 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,2) = 5] endwith // var_Items.CellCaption(h1,3) = 6 with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.CellCaption(h1,3) = 6] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith |
770 |
Is it possible to change the height for all items at once
local h,oGantt,var_Items,var_Items1 oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.LinesAtRoot = -1 oGantt.Columns.Add("Items") var_Items = oGantt.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(0) = true with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ExpandItem(0) = True] endwith oGantt.EndUpdate() oGantt.DefaultItemHeight = 12 // oGantt.Items.ItemHeight(0) = 12 var_Items1 = oGantt.Items with (oGantt) TemplateDef = [dim var_Items1] TemplateDef = var_Items1 Template = [var_Items1.ItemHeight(0) = 12] endwith |
769 |
Is it possible to specify the cell's value but still want to display some formatted text instead the value
local h,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.Columns.Add("Value") oGantt.Columns.Add("FormatCell") var_Items = oGantt.Items h = var_Items.AddItem(1) // var_Items.CellCaption(h,1) = 12 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = 12] endwith // var_Items.FormatCell(h,1) = "currency(value)" with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.FormatCell(h,1) = "currency(value)"] endwith h = var_Items.AddItem("01/01/2001") // var_Items.CellCaption(h,1) = "01/01/2001" with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = #1/1/2001#] endwith // var_Items.CellCaptionFormat(h,1) = 1 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaptionFormat(h,1) = 1] endwith // var_Items.FormatCell(h,1) = "longdate(value) replace '2001' with '<b>2001</b>'" with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.FormatCell(h,1) = "longdate(value) replace '2001' with '<b>2001</b>'"] endwith oGantt.EndUpdate() |
768 |
Is it possible to specify the cell's value but still want to display some formatted text instead the value
local h,oGantt,var_Chart,var_Column,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.MarkSearchColumn = false var_Columns = oGantt.Columns var_Columns.Add("Name") var_Column = var_Columns.Add("Values") var_Column.SortType = 1 var_Column.AllowSizing = false var_Column.Width = 64 var_Column.FormatColumn = "((0:=dbl(value)) < 10? '<fgcolor=808080><font ;7>' :'<b>') + currency(=:0)" // var_Column.Def(17) = 1 with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Def(17) = 1] endwith var_Items = oGantt.Items h = var_Items.AddItem("Root") // var_Items.FormatCell(h,1) = "'<none>'" with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.FormatCell(h,1) = "'<none>'"] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 1"),1) = 10 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 1"),1) = 10] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 2"),1) = 15 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 2"),1) = 15] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 3"),1) = 25 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 3"),1) = 25] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith oGantt.EndUpdate() |
767 |
I am using the FormatColumn to display the current currency, but would like hide some values. Is it possible
local h,oGantt,var_Chart,var_Column,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.MarkSearchColumn = false var_Columns = oGantt.Columns var_Columns.Add("Name") var_Column = var_Columns.Add("Values") var_Column.SortType = 1 var_Column.AllowSizing = false var_Column.Width = 64 var_Column.FormatColumn = "((0:=dbl(value)) < 10? '<fgcolor=808080><font ;7>' :'<b>') + currency(=:0)" // var_Column.Def(17) = 1 with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Def(17) = 1] endwith var_Items = oGantt.Items h = var_Items.AddItem("Root") // var_Items.FormatCell(h,1) = " " with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.FormatCell(h,1) = " "] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 1"),1) = 10 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 1"),1) = 10] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 2"),1) = 15 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 2"),1) = 15] endwith // var_Items.CellCaption(var_Items.InsertItem(h,null,"Child 3"),1) = 25 with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(InsertItem(h,,"Child 3"),1) = 25] endwith // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith oGantt.EndUpdate() |
766 |
How can I apply the same ConditionalFormat on more than 1(one) column (multiple columns and not on item)
local oGantt,var_Columns,var_ConditionalFormat,var_ConditionalFormat1,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_ConditionalFormat = oGantt.ConditionalFormats.Add("1","K1") var_ConditionalFormat.BackColor = 0xff var_ConditionalFormat.ApplyTo = 1 /*0x1 | */ var_ConditionalFormat1 = oGantt.ConditionalFormats.Add("1","K2") var_ConditionalFormat1.BackColor = 0xff var_ConditionalFormat1.ApplyTo = 2 /*0x2 | */ oGantt.MarkSearchColumn = false oGantt.DrawGridLines = -2 var_Columns = oGantt.Columns var_Columns.Add("Column 1") var_Columns.Add("Column 2") var_Columns.Add("Column 3") var_Items = oGantt.Items var_Items.AddItem() var_Items.AddItem() var_Items.AddItem() oGantt.EndUpdate() |
765 |
How can I get the list of items as they are displayed
local oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.BackColorAlternate = 0xf0f0f0 oGantt.Columns.Add("Names") var_Items = oGantt.Items var_Items.AddItem("Mantel") var_Items.AddItem("Mechanik") var_Items.AddItem("Motor") var_Items.AddItem("Murks") var_Items.AddItem("Märchen") var_Items.AddItem("Möhren") var_Items.AddItem("Mühle") oGantt.Columns.Item(0).SortOrder = 1 oGantt.EndUpdate() ? Str(oGantt.GetItems(1)) |
764 |
Is posible to reduce the size of the picture to be shown in the column's caption
local oGantt,var_Column,var_Column1 oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oGantt.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oGantt.HeaderHeight = 48 // oGantt.Columns.Add("DefaultSize").HTMLCaption = "Default-Size <img>pic1</img> Picture" var_Column = oGantt.Columns.Add("DefaultSize") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.HTMLCaption = "Default-Size <img>pic1</img> Picture"] endwith // oGantt.Columns.Add("CustomSize").HTMLCaption = "Custom-Size <img>pic1:16</img> Picture" var_Column1 = oGantt.Columns.Add("CustomSize") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.HTMLCaption = "Custom-Size <img>pic1:16</img> Picture"] endwith oGantt.EndUpdate() |
763 |
How can I change the color, font, bold etc for the items/cells in the same column or for the entire column
|
762 |
The item is not getting selected when clicking the cell's checkbox. What should I do
/* with (this.EXGANTTCHARTACTIVEXCONTROL1.nativeObject) CellStateChanged = class::nativeObject_CellStateChanged endwith */ // Fired after cell's state has been changed. function nativeObject_CellStateChanged(Item,ColIndex) local var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject // oGantt.Items.SelectItem(Item) = true var_Items = oGantt.Items with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.SelectItem(Item) = True] endwith return local oGantt,var_Column,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject // oGantt.Columns.Add("Check").Def(0) = true var_Column = oGantt.Columns.Add("Check") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Def(0) = True] endwith var_Items = oGantt.Items var_Items.AddItem(0) var_Items.AddItem(1) var_Items.AddItem(2) var_Items.AddItem(3) |
761 |
Is it possible to limit the height of the item while resizing
/* with (this.EXGANTTCHARTACTIVEXCONTROL1.nativeObject) AddItem = class::nativeObject_AddItem endwith */ // Occurs after a new Item has been inserted to Items collection. function nativeObject_AddItem(Item) local var_Items,var_Items1 oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject // oGantt.Items.ItemMinHeight(Item) = 18 var_Items = oGantt.Items with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemMinHeight(Item) = 18] endwith // oGantt.Items.ItemMaxHeight(Item) = 72 var_Items1 = oGantt.Items with (oGantt) TemplateDef = [dim var_Items1] TemplateDef = var_Items1 Template = [var_Items1.ItemMaxHeight(Item) = 72] endwith return local oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ItemsAllowSizing = -1 oGantt.ScrollBySingleLine = false oGantt.BackColorAlternate = 0xf0f0f0 oGantt.Columns.Add("Names") var_Items = oGantt.Items var_Items.AddItem("Mantel") var_Items.AddItem("Mechanik") var_Items.AddItem("Motor") var_Items.AddItem("Murks") var_Items.AddItem("Märchen") var_Items.AddItem("Möhren") var_Items.AddItem("Mühle") oGantt.Columns.Item(0).SortOrder = 1 oGantt.EndUpdate() |
760 |
Is it possible to copy the hierarchy of the control using the GetItems method
local h,oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.LinesAtRoot = -1 oGantt.Columns.Add("Def") var_Items = oGantt.Items h = var_Items.AddItem("Root") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") oGantt.PutItems(oGantt.GetItems(-1)) |
759 |
Does your control supports multiple lines tooltip
local oGantt,var_Column oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oGantt.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oGantt.ToolTipDelay = 1 // oGantt.Columns.Add("tootip").ToolTip = "<br><font Tahoma;10>This</font> is a <b>multi-lines</b> tooltip assigned to a column. The tooltip supports built-in HTML tags, icons and pictures.<br><br><br><img>pic1</img> picture ... <br><br>" var_Column = oGantt.Columns.Add("tootip") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.ToolTip = "<br><font Tahoma;10>This</font> is a <b>multi-lines</b> tooltip assigned to a column. The tooltip supports built-in HTML tags, icons and pictures.<br><br><br><img>pic1</img> picture ... <br><br>"] endwith |
758 |
It is possible to write the word in red/color or to add a tooltip or a link to the word
local h1,h2,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.Columns.Add("Task") var_Chart = oGantt.Chart var_Chart.LevelCount = 2 var_Chart.FirstVisibleDate = "12/26/2000" // var_Chart.PaneWidth(false) = 32 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 32] endwith var_Items = oGantt.Items h1 = var_Items.AddItem("Task 1") var_Items.AddBar(h1,"","01/01/2001","01/05/2001","K1","some <fgcolor=FF0000>red</fgcolor> text") // var_Items.ItemBar(h1,"K1",10) = false with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.ItemBar(h1,"K1",10) = False] endwith // var_Items.ItemBar(h1,"K1",6) = "And here goes the <b>tooltip</b> of the text. " with (oGantt) TemplateDef = [dim var_Items,h1] TemplateDef = var_Items TemplateDef = h1 Template = [var_Items.ItemBar(h1,"K1",6) = "And here goes the <b>tooltip</b> of the text. "] endwith var_Items.AddItem("") var_Items.AddItem("") var_Items.AddItem("") var_Items.AddItem("") h2 = var_Items.AddItem("Task 2") var_Items.AddBar(h2,"Task","01/05/2001","01/07/2001","K2") // var_Items.ItemBar(h2,"K2",6) = "And here goes the <b>tooltip</b> of the bar. " with (oGantt) TemplateDef = [dim var_Items,h2] TemplateDef = var_Items TemplateDef = h2 Template = [var_Items.ItemBar(h2,"K2",6) = "And here goes the <b>tooltip</b> of the bar. "] endwith var_Items.AddLink("L1",h1,"K1",h2,"K2") // var_Items.Link("L1",12) = "L<b>inke</b>d to a bar" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L1",12) = "L<b>inke</b>d to a bar"] endwith // var_Items.Link("L1",13) = "And here goes the <b>tooltip</b> of the link. " with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.Link("L1",13) = "And here goes the <b>tooltip</b> of the link. "] endwith |
757 |
It is possible to use seconds/minutes/hours as time scale in your control, but using my regional settings
local oGantt,var_Chart,var_Chart1,var_Level,var_Level1,var_Level2,var_Level3 oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart // var_Chart.Label(16) = "<|><%loc_m1%><|><%loc_m2%><|><%loc_m3%><|><%loc_mmmm%><|><%loc_m3%> '<%yy%><|><%loc_mmmm%> <%yyyy%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(16) = "<|><%loc_m1%><|><%loc_m2%><|><%loc_m3%><|><%loc_mmmm%><|><%loc_m3%> '<%yy%><|><%loc_mmmm%> <%yyyy%>"] endwith // var_Chart.Label(256) = "<|><%ww%><|><%loc_m3%> <%d%>, '<%yy%><r><%ww%><|><%loc_mmmm%> <%d%>, <%yyyy%><r><%ww%><||><||>256" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(256) = "<|><%ww%><|><%loc_m3%> <%d%>, '<%yy%><r><%ww%><|><%loc_mmmm%> <%d%>, <%yyyy%><r><%ww%><||><||>256"] endwith // var_Chart.Label(4096) = "<|><%loc_d1%><|><%loc_d2%><|><%loc_d3%><|><%loc_dddd%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%><||><||>4096" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(4096) = "<|><%loc_d1%><|><%loc_d2%><|><%loc_d3%><|><%loc_dddd%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%><||><||>4096"] endwith // var_Chart.Label(65536) = "<|><%hh%><|><%h%> <%AM/PM%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%> <%h%> <%AM/PM%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%> <%AM/PM%><||><||>65536" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(65536) = "<|><%hh%><|><%h%> <%AM/PM%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%> <%h%> <%AM/PM%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%> <%AM/PM%><||><||>65536"] endwith // var_Chart.Label(1048576) = "<|><%nn%><|><%h%>:<%nn%> <%AM/PM%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%> <%h%>:<%nn%> <%AM/PM%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%> <%AM/PM%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(1048576) = "<|><%nn%><|><%h%>:<%nn%> <%AM/PM%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%> <%h%>:<%nn%> <%AM/PM%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%> <%AM/PM%>"] endwith // var_Chart.Label(16777216) = "<|><%ss%><|><%nn%>:<%ss%><|><%h%>:<%nn%>:<%ss%> <%AM/PM%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(16777216) = "<|><%ss%><|><%nn%>:<%ss%><|><%h%>:<%nn%>:<%ss%> <%AM/PM%><|><%loc_d3%>, <%loc_m3%> <%d%>, '<%yy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%><|><%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%>"] endwith // var_Chart.LabelToolTip(16) = "<%loc_mmmm%>/<%yyyy%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(16) = "<%loc_mmmm%>/<%yyyy%>"] endwith // var_Chart.LabelToolTip(256) = "<%loc_mmmm%> <%d%>, <%yyyy%> <%ww%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(256) = "<%loc_mmmm%> <%d%>, <%yyyy%> <%ww%>"] endwith // var_Chart.LabelToolTip(4096) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(4096) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%>"] endwith // var_Chart.LabelToolTip(65536) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%> <%AM/PM%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(65536) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%> <%AM/PM%>"] endwith // var_Chart.LabelToolTip(1048576) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%> <%AM/PM%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(1048576) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%> <%AM/PM%>"] endwith // var_Chart.LabelToolTip(16777216) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(16777216) = "<%loc_dddd%>, <%loc_mmmm%> <%d%>, <%yyyy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%>"] endwith var_Chart1 = oGantt.Chart // var_Chart1.PaneWidth(false) = 0 with (oGantt) TemplateDef = [dim var_Chart1] TemplateDef = var_Chart1 Template = [var_Chart1.PaneWidth(False) = 0] endwith var_Chart1.FirstVisibleDate = "01/01/2001" var_Chart1.LevelCount = 4 // var_Chart1.Level(0).Label = 4096 var_Level = var_Chart1.Level(0) with (oGantt) TemplateDef = [dim var_Level] TemplateDef = var_Level Template = [var_Level.Label = 4096] endwith // var_Chart1.Level(1).Label = 65536 var_Level1 = var_Chart1.Level(1) with (oGantt) TemplateDef = [dim var_Level1] TemplateDef = var_Level1 Template = [var_Level1.Label = 65536] endwith // var_Chart1.Level(2).Label = 1048576 var_Level2 = var_Chart1.Level(2) with (oGantt) TemplateDef = [dim var_Level2] TemplateDef = var_Level2 Template = [var_Level2.Label = 1048576] endwith var_Level3 = var_Chart1.Level(3) var_Level3.Count = 15 var_Level3.Label = 16777216 oGantt.EndUpdate() |
756 |
The chart's header is displayed in English. Can I change so it is the same as in my regional settings
|
755 |
It is possible to use seconds/minutes/hours as time scale in your control
|
754 |
How can I prevent highlighting the column from the cursor - point
|
753 |
Can I use and display PNG pictures
local oGantt,var_Column oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.Template = [HTMLPicture("pic1") = "c:\exontrol\images\card.png"] // oGantt.HTMLPicture("pic1") = "c:\exontrol\images\card.png" oGantt.HeaderHeight = 48 // oGantt.Columns.Add("ColumnName").HTMLCaption = "<b>HTML</b> Column <img>pic1</img> Picture" var_Column = oGantt.Columns.Add("ColumnName") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.HTMLCaption = "<b>HTML</b> Column <img>pic1</img> Picture"] endwith |
752 |
Is it possible to specify the background color for the item in the chart part only
|
751 |
Is it possible to apply different visual appearance, color, sizes for item in the list and chart part
local h,hC,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") oGantt.VisualAppearance.Add(3,"CP:2 2 2 -2 -2") oGantt.Columns.Add("Default") oGantt.SelBackMode = 1 var_Items = oGantt.Items h = var_Items.AddItem("Root") hC = var_Items.InsertItem(h,null,"Child 1") // var_Items.ItemBackColor(hC) = 0x1ffff00 with (oGantt) TemplateDef = [dim var_Items,hC] TemplateDef = var_Items TemplateDef = hC Template = [var_Items.ItemBackColor(hC) = 33554176] endwith // oGantt.Chart.ItemBackColor(hC) = 0x300ff00 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [Me.Chart.ItemBackColor(hC) = 50396928] endwith var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith |
750 |
How do I change the visual appearance for the entire item, using your EBN technology
local h,hC,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.Columns.Add("Default") var_Items = oGantt.Items h = var_Items.AddItem("Root") hC = var_Items.InsertItem(h,null,"Child 1") // var_Items.ItemBackColor(hC) = 0x1000000 with (oGantt) TemplateDef = [dim var_Items,hC] TemplateDef = var_Items TemplateDef = hC Template = [var_Items.ItemBackColor(hC) = 16777216] endwith // oGantt.Chart.ItemBackColor(hC) = 0x1000000 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [Me.Chart.ItemBackColor(hC) = 16777216] endwith var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith |
749 |
is it possible to specify the a different background color for the item, list and chart part
|
748 |
Is it possible to specify the background color for the entire row, including the chart part
|
747 |
How can I show the tooltip programmatically ( I want to be able to set the tooltip content dynamically just before the tooltip start to appear, not using the exBarTooltip )
/* with (this.EXGANTTCHARTACTIVEXCONTROL1.nativeObject) MouseMove = class::nativeObject_MouseMove endwith */ // Occurs when the user moves the mouse. function nativeObject_MouseMove(Button,Shift,X,Y) oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.ShowToolTip(oGantt.Chart.BarFromPoint(-1,-1),"","8","8") return local h,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Columns.Add("Def") var_Chart = oGantt.Chart // var_Chart.PaneWidth(false) = 64 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 64] endwith var_Chart.LevelCount = 2 var_Chart.FirstVisibleDate = "01/01/2010" var_Items = oGantt.Items h = var_Items.AddItem("Task") var_Items.AddBar(h,"Task","01/02/2010","01/05/2010","A","A") var_Items.AddBar(h,"Task","01/05/2010","01/08/2010","B","B") var_Items.AddBar(h,"Task","01/08/2010","01/11/2010","C","C") oGantt.EndUpdate() |
746 |
Is it possible to move an item from a parent to another
local oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.LinesAtRoot = -1 oGantt.Columns.Add("Items") var_Items = oGantt.Items var_Items.AddItem("A") var_Items.AddItem("B") var_Items.InsertItem(var_Items.AddItem("C"),"","D") var_Items.SetParent(var_Items.FindItem("D",0),var_Items.FindItem("A",0)) oGantt.EndUpdate() |
745 |
How can I change the identation for an item
local oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.LinesAtRoot = -1 oGantt.Columns.Add("Items") var_Items = oGantt.Items var_Items.AddItem("A") var_Items.AddItem("B") var_Items.InsertItem(var_Items.AddItem("C"),"","D") var_Items.SetParent(var_Items.FindItem("D",0),0) oGantt.EndUpdate() |
744 |
How can I specify the levels using the user's Regional and Language Options
local oGantt,var_Chart,var_Level,var_Level1 oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Font.Name = "Arial Unicode MS" oGantt.HeaderHeight = 36 var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "05/30/2010" // var_Chart.PaneWidth(false) = 0 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 0] endwith var_Chart.FirstWeekDay = 1 var_Chart.UnitWidth = 36 var_Chart.LevelCount = 2 var_Level = var_Chart.Level(0) var_Level.Label = "<b><%loc_mmmm%></b> <%yyyy%><br><%loc_sdate%><r> <%ww%> " var_Level.ToolTip = var_Level.Label var_Level.Unit = 256 var_Level1 = var_Chart.Level(1) var_Level1.Label = "<%loc_ddd%><br><%d%>" var_Level1.ToolTip = var_Level1.Label var_Chart.ToolTip = "<%loc_ldate%>" oGantt.EndUpdate() |
743 |
How can I display a bar only using a gradient color and shadow
local h,oGantt,var_Bar,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Bar = var_Chart.Bars.Item("Task") var_Bar.StartColor = 0xffffff var_Bar.EndColor = var_Bar.Color oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") h = var_Items.AddItem("W/h Gradient") var_Items.AddBar(h,"Task","01/04/2010","01/09/2010","") // var_Items.ItemBar(h,"",17) = 8291 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",17) = 8291] endwith var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
742 |
Is it possible to display a bar only using a gradient color using the exBarColor option
local h,oGantt,var_Bar,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Bar = var_Chart.Bars.Item("Task") var_Bar.StartColor = 0xffffff var_Bar.EndColor = var_Bar.StartColor var_Bar.Height = 17 oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") h = var_Items.AddItem("W/h Gradient") var_Items.AddBar(h,"Task","01/04/2010","01/09/2010","") // var_Items.ItemBar(h,"",17) = 227 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",17) = 227] endwith h = var_Items.AddItem("W/h Color") var_Items.AddBar(h,"Task","01/04/2010","01/09/2010","") // var_Items.ItemBar(h,"",17) = 227 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",17) = 227] endwith // var_Items.ItemBar(h,"",513) = 255 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",513) = 255] endwith var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
741 |
Is it possible to display a bar only using a gradient color
local h,oGantt,var_Bar,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Bar = var_Chart.Bars.Item("Task") var_Bar.StartColor = 0xffffff var_Bar.EndColor = var_Bar.StartColor var_Bar.Height = 17 oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") h = var_Items.AddItem("W/h Gradient") var_Items.AddBar(h,"Task","01/04/2010","01/09/2010","") // var_Items.ItemBar(h,"",17) = 227 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",17) = 227] endwith var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
740 |
Is it possible to display a bar only using a gradient color
local h,oGantt,var_Bar,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Bar = var_Chart.Bars.Item("Task") var_Bar.StartColor = 0xffffff var_Bar.EndColor = var_Bar.Color oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") h = var_Items.AddItem("W/h Gradient") var_Items.AddBar(h,"Task","01/04/2010","01/09/2010","") // var_Items.ItemBar(h,"",17) = 99 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",17) = 99] endwith var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
739 |
How can I display a specified bar only with a thicker border
local h,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") h = var_Items.AddItem("W/h Border") var_Items.AddBar(h,"Task","01/04/2010","01/09/2010","") // var_Items.ItemBar(h,"",17) = 4099 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",17) = 4099] endwith var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
738 |
Is it possible to display the shadow for a specified bar
local h,oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") h = var_Items.AddItem("W/h Shadow") var_Items.AddBar(h,"Task","01/04/2010","01/09/2010","") // var_Items.ItemBar(h,"",17) = 8195 with (oGantt) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemBar(h,"",17) = 8195] endwith var_Items.AddBar(var_Items.AddItem("Original"),"Task","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
737 |
Is it possible to display the task bars with a gradient color
local oGantt,var_Bar,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Chart.Bars.Copy("Task","TaskO") var_Bar = var_Chart.Bars.Item("Task") var_Bar.Pattern = 99 /*exPatternGradientVBox | exPatternBox | exPatternShadow*/ var_Bar.StartColor = 0xffffff var_Bar.EndColor = var_Bar.Color oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Original"),"TaskO","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Pattern Gradient"),"Task","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Original"),"TaskO","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
736 |
How can I know the type of bars I can displays using predefined patterns
local oGantt,var_Bar,var_Bar1,var_Bar10,var_Bar11,var_Bar12,var_Bar13,var_Bar14,var_Bar2,var_Bar3,var_Bar4,var_Bar5,var_Bar6,var_Bar7,var_Bar8,var_Bar9,var_Bars,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.FirstVisibleDate = "12/31/2009" var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 96 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 96] endwith var_Bars = var_Chart.Bars // var_Bars.Add("Box").Pattern = 32 var_Bar = var_Bars.Add("Box") with (oGantt) TemplateDef = [dim var_Bar] TemplateDef = var_Bar Template = [var_Bar.Pattern = 32] endwith // var_Bars.Add("ThickBox").Pattern = 4128 /*exPatternThickBox | exPatternBox*/ var_Bar1 = var_Bars.Add("ThickBox") with (oGantt) TemplateDef = [dim var_Bar1] TemplateDef = var_Bar1 Template = [var_Bar1.Pattern = 4128] endwith // var_Bars.Add("DiagBox").Pattern = 4102 /*exPatternThickBox | exPatternBDiagonal*/ var_Bar2 = var_Bars.Add("DiagBox") with (oGantt) TemplateDef = [dim var_Bar2] TemplateDef = var_Bar2 Template = [var_Bar2.Pattern = 4102] endwith // var_Bars.Copy("Task","Shadow").Pattern = 8195 /*exPatternFrameShadow | exPatternShadow*/ var_Bar3 = var_Bars.Copy("Task","Shadow") with (oGantt) TemplateDef = [dim var_Bar3] TemplateDef = var_Bar3 Template = [var_Bar3.Pattern = 8195] endwith // var_Bars.Copy("Task","TShadow").Pattern = 12295 /*exPatternFrameShadow | exPatternThickBox | exPatternDiagCross*/ var_Bar4 = var_Bars.Copy("Task","TShadow") with (oGantt) TemplateDef = [dim var_Bar4] TemplateDef = var_Bar4 Template = [var_Bar4.Pattern = 12295] endwith var_Bar5 = var_Bars.Add("HGrad1") var_Bar5.Pattern = 32 var_Bar5.StartColor = 0xffffff var_Bar5.EndColor = 0xff0000 var_Bar6 = var_Bars.Add("HGrad2") var_Bar6.Pattern = 35 /*exPatternBox | exPatternShadow*/ var_Bar6.StartColor = 0xffffff var_Bar6.EndColor = 0xff0000 var_Bar6.Color = 0xff0000 var_Bar7 = var_Bars.Add("HGrad3") var_Bar7.Pattern = 163 /*exPatternGradient3Colors | exPatternBox | exPatternShadow*/ var_Bar7.StartColor = 0xffffff var_Bar7.EndColor = var_Bar7.StartColor var_Bar7.Color = 0xff0000 var_Bar8 = var_Bars.Add("HGrad4") var_Bar8.Pattern = 4256 /*exPatternThickBox | exPatternGradient3Colors | exPatternBox*/ var_Bar8.StartColor = 0xffffff var_Bar8.EndColor = var_Bar8.StartColor var_Bar8.Color = 0xff0000 var_Bar9 = var_Bars.Add("HGrad5") var_Bar9.Pattern = 8352 /*exPatternFrameShadow | exPatternGradient3Colors | exPatternBox*/ var_Bar9.StartColor = 0xff00 var_Bar9.EndColor = 0xff var_Bar9.Color = 0xff0000 var_Bar10 = var_Bars.Add("VGrad1") var_Bar10.Pattern = 96 /*exPatternGradientVBox | exPatternBox*/ var_Bar10.StartColor = 0xffffff var_Bar10.EndColor = 0xff0000 var_Bar10.Height = 14 var_Bar11 = var_Bars.Add("VGrad2") var_Bar11.Pattern = 99 /*exPatternGradientVBox | exPatternBox | exPatternShadow*/ var_Bar11.StartColor = 0xffffff var_Bar11.EndColor = 0xff0000 var_Bar11.Color = 0xff0000 var_Bar11.Height = 14 var_Bar12 = var_Bars.Add("VGrad3") var_Bar12.Pattern = 227 /*exPatternGradient3Colors | exPatternGradientVBox | exPatternBox | exPatternShadow*/ var_Bar12.StartColor = 0xffffff var_Bar12.EndColor = var_Bar12.StartColor var_Bar12.Color = 0xff0000 var_Bar12.Height = 14 var_Bar13 = var_Bars.Add("VGrad4") var_Bar13.Pattern = 4320 /*exPatternThickBox | exPatternGradient3Colors | exPatternGradientVBox | exPatternBox*/ var_Bar13.StartColor = 0xffffff var_Bar13.EndColor = var_Bar13.StartColor var_Bar13.Color = 0xff0000 var_Bar13.Height = -1 var_Bar14 = var_Bars.Add("VGrad5") var_Bar14.Pattern = 8416 /*exPatternFrameShadow | exPatternGradient3Colors | exPatternGradientVBox | exPatternBox*/ var_Bar14.StartColor = 0xff00 var_Bar14.EndColor = 0xff var_Bar14.Color = 0xff0000 var_Bar14.Height = 14 oGantt.Columns.Add("Types") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Box"),"Box","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Thick Box"),"ThickBox","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Thick Box Diag"),"DiagBox","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Shadow"),"Shadow","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Thick Shadow"),"TShadow","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Solid Gradient"),"HGrad1","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Pattern Gradient"),"HGrad2","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Pattern Gradient 3 Colors"),"HGrad3","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Solid Gradient 3 Colors"),"HGrad4","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Gradient Shadow"),"HGrad5","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Solid Gradient"),"VGrad1","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Pattern Gradient"),"VGrad2","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Pattern Gradient 3 Colors"),"VGrad3","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Solid Gradient 3 Colors"),"VGrad4","01/04/2010","01/09/2010","") var_Items.AddBar(var_Items.AddItem("Gradient Shadow"),"VGrad5","01/04/2010","01/09/2010","") oGantt.EndUpdate() |
735 |
Is it possible to display the bars with a thicker border
local oGantt,var_Bar,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Columns.Add("Task") oGantt.Chart.FirstVisibleDate = "01/01/2001" // oGantt.Chart.PaneWidth(false) = 48 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 48] endwith // oGantt.Chart.Bars.Copy("Task","TaskB").Pattern = 4099 /*exPatternThickBox | exPatternShadow*/ var_Bar = oGantt.Chart.Bars.Copy("Task","TaskB") with (oGantt) TemplateDef = [dim var_Bar] TemplateDef = var_Bar Template = [var_Bar.Pattern = 4099] endwith var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Task 1"),"Task","01/02/2001","01/05/2001","") var_Items.AddBar(var_Items.AddItem("Task 2"),"TaskB","01/02/2001","01/05/2001","") var_Items.AddBar(var_Items.AddItem("Task 3"),"Task","01/02/2001","01/05/2001","") oGantt.EndUpdate() |
734 |
Is it possible to display the shadow for EBN bars
local oGantt,var_Bar,var_Bar1,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGantt.Columns.Add("Task") oGantt.Chart.FirstVisibleDate = "01/01/2001" // oGantt.Chart.PaneWidth(false) = 48 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 48] endwith var_Bar = oGantt.Chart.Bars.Copy("Task","EBN") var_Bar.Color = 0x1000000 var_Bar.Pattern = 8192 // oGantt.Chart.Bars.Copy("Task","EBN2").Color = 0x1000000 var_Bar1 = oGantt.Chart.Bars.Copy("Task","EBN2") with (oGantt) TemplateDef = [dim var_Bar1] TemplateDef = var_Bar1 Template = [var_Bar1.Color = 16777216] endwith var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Task 1"),"EBN2","01/02/2001","01/05/2001","") var_Items.AddBar(var_Items.AddItem("Task 2"),"EBN","01/02/2001","01/05/2001","") var_Items.AddBar(var_Items.AddItem("Task 3"),"EBN2","01/02/2001","01/05/2001","") oGantt.EndUpdate() |
733 |
Can I display a shadow for my bars
local oGantt,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Columns.Add("Task") oGantt.Chart.FirstVisibleDate = "01/01/2001" // oGantt.Chart.PaneWidth(false) = 48 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 48] endwith oGantt.Chart.Bars.Item("Task").Pattern = 8195 /*exPatternFrameShadow | exPatternShadow*/ var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Task 1"),"Task","01/02/2001","01/05/2001","") var_Items.AddBar(var_Items.AddItem("Task 2"),"Task","01/02/2001","01/05/2001","") oGantt.EndUpdate() |
732 |
How can I use the Color property for gradient bars
local oGantt,var_Bar,var_Bar1,var_Chart,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Columns.Add("Task") oGantt.Chart.FirstVisibleDate = "01/01/2001" // oGantt.Chart.PaneWidth(false) = 48 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 48] endwith var_Bar = oGantt.Chart.Bars.Add("V") var_Bar.Color = 0xff var_Bar.StartColor = 0xff00 var_Bar.EndColor = var_Bar.StartColor var_Bar.Pattern = 224 /*exPatternGradient3Colors | exPatternGradientVBox | exPatternBox*/ var_Bar.Height = -1 var_Bar1 = oGantt.Chart.Bars.Add("H") var_Bar1.Color = 0xff var_Bar1.StartColor = 0xff00 var_Bar1.EndColor = var_Bar1.StartColor var_Bar1.Pattern = 160 /*exPatternGradient3Colors | exPatternBox*/ var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Task 1"),"V","01/02/2001","01/05/2001","") var_Items.AddBar(var_Items.AddItem("Task 2"),"H","01/02/2001","01/05/2001","") oGantt.EndUpdate() |
731 |
Is there any option to show bars with vertical gradient
local h,oGantt,var_Bar,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.Columns.Add("Task") oGantt.Chart.FirstVisibleDate = "01/01/2001" var_Bar = oGantt.Chart.Bars.Item("Task") var_Bar.Color = 0xff var_Bar.StartColor = 0xff00 var_Bar.EndColor = 0xffff var_Bar.Pattern = 96 /*exPatternGradientVBox | exPatternBox*/ var_Items = oGantt.Items h = var_Items.AddItem("Task") var_Items.AddBar(h,"Task","01/02/2001","01/05/2001","") |
730 |
How can I define a new milestone bar
local oGantt,var_Bar,var_Bar1,var_Bar2,var_Bars,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oGantt.Chart.FirstVisibleDate = "01/01/2001" var_Bars = oGantt.Chart.Bars var_Bars.AddShapeCorner(12345,1) var_Bars.AddShapeCorner(12346,2) // var_Bars.Copy("Milestone","M1").StartShape = 12345 /*0x3020 | exShapeIconVBar | exShapeIconRight*/ var_Bar = var_Bars.Copy("Milestone","M1") with (oGantt) TemplateDef = [dim var_Bar] TemplateDef = var_Bar Template = [var_Bar.StartShape = 12345] endwith // var_Bars.Copy("Milestone","M2").StartShape = 12346 /*0x3020 | exShapeIconSquare | exShapeIconRight*/ var_Bar1 = var_Bars.Copy("Milestone","M2") with (oGantt) TemplateDef = [dim var_Bar1] TemplateDef = var_Bar1 Template = [var_Bar1.StartShape = 12346] endwith var_Bar2 = var_Bars.Copy("Milestone","MP") var_Bar2.StartShape = 20 var_Bar2.StartColor = 0xff oGantt.Columns.Add("Column") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Default"),"Milestone","01/02/2001","01/02/2001") var_Items.AddBar(var_Items.AddItem("Predefined"),"MP","01/03/2001","01/03/2001") var_Items.AddBar(var_Items.AddItem("Custom 1"),"M1","01/04/2001","01/04/2001") var_Items.AddBar(var_Items.AddItem("Custom 2"),"M2","01/05/2001","01/05/2001") oGantt.EndUpdate() |
729 |
How can I define my milestone bar, using my icons or pictures
local oGantt,var_Bar,var_Bars,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oGantt.Chart.FirstVisibleDate = "01/01/2001" var_Bars = oGantt.Chart.Bars var_Bars.AddShapeCorner(12345,1) // var_Bars.Item("Milestone").StartShape = 12345 /*0x3020 | exShapeIconVBar | exShapeIconRight*/ var_Bar = var_Bars.Item("Milestone") with (oGantt) TemplateDef = [dim var_Bar] TemplateDef = var_Bar Template = [var_Bar.StartShape = 12345] endwith oGantt.Columns.Add("Column") var_Items = oGantt.Items var_Items.AddBar(var_Items.AddItem("Item 1"),"Milestone","01/02/2001","01/02/2001") |
728 |
I haven't found options to localize (in Italian) the strings ( dates, tooltip ) that shows in the chart area
local oGantt,var_Chart oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 0 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 0] endwith // var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%> <%mmmm%> <%yyyy%><r><%ww%><||><||>256" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%> <%mmmm%> <%yyyy%><r><%ww%><||><||>256"] endwith // var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%> <%m3%> '<%yy%><|><%dddd%> <%d%> <%mmmm%> <%yyyy%><||><||>4096" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%> <%m3%> '<%yy%><|><%dddd%> <%d%> <%mmmm%> <%yyyy%><||><||>4096"] endwith // var_Chart.LabelToolTip(256) = "<%d%> <%mmmm%> <%yyyy%> <%ww%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(256) = "<%d%> <%mmmm%> <%yyyy%> <%ww%>"] endwith // var_Chart.LabelToolTip(4096) = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(4096) = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>"] endwith var_Chart.FirstWeekDay = 1 var_Chart.MonthNames = "gennaio febbraio marzo aprile maggio giugno luglio agosto settembre ottobre novembre dicembre" var_Chart.WeekDays = "domenica lunedì martedì mercoledì giovedì venerdì sabato" var_Chart.ToolTip = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>" var_Chart.UnitScale = 4096 oGantt.EndUpdate() |
727 |
I haven't found options to localize (in Dutch) the strings ( dates, tooltip ) that shows in the chart area
local oGantt,var_Chart oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 0 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 0] endwith // var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%> <%mmmm%> <%yyyy%><r><%ww%><||><||>256" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%> <%mmmm%> <%yyyy%><r><%ww%><||><||>256"] endwith // var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%> <%m3%> '<%yy%><|><%dddd%> <%d%> <%mmmm%> <%yyyy%><||><||>4096" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%> <%m3%> '<%yy%><|><%dddd%> <%d%> <%mmmm%> <%yyyy%><||><||>4096"] endwith // var_Chart.LabelToolTip(256) = "<%d%> <%mmmm%> <%yyyy%> <%ww%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(256) = "<%d%> <%mmmm%> <%yyyy%> <%ww%>"] endwith // var_Chart.LabelToolTip(4096) = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(4096) = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>"] endwith var_Chart.FirstWeekDay = 1 var_Chart.MonthNames = "januari februari maart april mei juni juli augusts september oktober november december" var_Chart.WeekDays = "zondag maandag dinsdag woensdag donderdag vrijdag zaterdag" var_Chart.ToolTip = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>" var_Chart.UnitScale = 4096 oGantt.EndUpdate() |
726 |
I haven't found options to localize (in German) the strings ( dates, tooltip ) that shows in the chart area
local oGantt,var_Chart oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 0 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 0] endwith // var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%>.<%mmmm%> <%yyyy%><r><%ww%><||><||>256" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%>.<%mmmm%> <%yyyy%><r><%ww%><||><||>256"] endwith // var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%>.<%m3%> '<%yy%><|><%dddd%> <%d%>.<%mmmm%> <%yyyy%><||><||>4096" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%>.<%m3%> '<%yy%><|><%dddd%> <%d%>.<%mmmm%> <%yyyy%><||><||>4096"] endwith // var_Chart.LabelToolTip(256) = "<%d%>.<%mmmm%> <%yyyy%> <%ww%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(256) = "<%d%>.<%mmmm%> <%yyyy%> <%ww%>"] endwith // var_Chart.LabelToolTip(4096) = "<%dddd%>, <%d%>.<%mmmm%> <%yyyy%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(4096) = "<%dddd%>, <%d%>.<%mmmm%> <%yyyy%>"] endwith var_Chart.FirstWeekDay = 1 var_Chart.MonthNames = "Januar Februar März April Mai Juni Juli August September Oktober November Dezember" var_Chart.WeekDays = "Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag" var_Chart.ToolTip = "<%dddd%>,<%d%>.<%mmmm%> <%yyyy%>" var_Chart.UnitScale = 4096 oGantt.EndUpdate() |
725 |
I haven't found options to localize (in French) the strings ( dates, tooltip ) that shows in the chart area
local oGantt,var_Chart oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Chart = oGantt.Chart var_Chart.LevelCount = 2 // var_Chart.PaneWidth(false) = 0 with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(False) = 0] endwith // var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%> <%mmmm%> <%yyyy%><r><%ww%><||><||>256" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(256) = "<|><%ww%><|><%d%> <%m3%> '<%yy%><r><%ww%><|><%d%> <%mmmm%> <%yyyy%><r><%ww%><||><||>256"] endwith // var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%> <%m3%> '<%yy%><|><%dddd%> <%d%> <%mmmm%> <%yyyy%><||><||>4096" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.Label(4096) = "<|><%d1%><|><%d2%><|><%d3%><|><%dddd%><|><%d3%> <%d%> <%m3%> '<%yy%><|><%dddd%> <%d%> <%mmmm%> <%yyyy%><||><||>4096"] endwith // var_Chart.LabelToolTip(256) = "<%d%> <%mmmm%> <%yyyy%> <%ww%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(256) = "<%d%> <%mmmm%> <%yyyy%> <%ww%>"] endwith // var_Chart.LabelToolTip(4096) = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>" with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.LabelToolTip(4096) = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>"] endwith var_Chart.FirstWeekDay = 1 var_Chart.MonthNames = "janvier février mars avril mai juin juillet août septembre octobre novembre décembre" var_Chart.WeekDays = "dimanche lundi mardi mercredi jeudi vendredi samedi" var_Chart.ToolTip = "<%dddd%> <%d%> <%mmmm%> <%yyyy%>" var_Chart.UnitScale = 4096 oGantt.EndUpdate() |
724 |
How can I filter programatically using more columns
local oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns var_Columns.Add("Car") var_Columns.Add("Equipment") var_Items = oGantt.Items // var_Items.CellCaption(var_Items.AddItem("Mazda"),1) = "Air Bag" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem("Mazda"),1) = "Air Bag"] endwith // var_Items.CellCaption(var_Items.AddItem("Toyota"),1) = "Air Bag,Air condition" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem("Toyota"),1) = "Air Bag,Air condition"] endwith // var_Items.CellCaption(var_Items.AddItem("Ford"),1) = "Air condition" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem("Ford"),1) = "Air condition"] endwith // var_Items.CellCaption(var_Items.AddItem("Nissan"),1) = "Air Bag,ABS,ESP" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem("Nissan"),1) = "Air Bag,ABS,ESP"] endwith // var_Items.CellCaption(var_Items.AddItem("Mazda"),1) = "Air Bag, ABS,ESP" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem("Mazda"),1) = "Air Bag, ABS,ESP"] endwith // var_Items.CellCaption(var_Items.AddItem("Mazda"),1) = "ABS,ESP" with (oGantt) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem("Mazda"),1) = "ABS,ESP"] endwith var_Column = oGantt.Columns.Item("Car") var_Column.FilterType = 240 var_Column.Filter = "Mazda" var_Column1 = oGantt.Columns.Item("Equipment") var_Column1.FilterType = 3 var_Column1.Filter = "*ABS*|*ESP*" oGantt.ApplyFilter() oGantt.EndUpdate() |
723 |
I have seen the IN function but it returns -1 or 0. How can I display the value being found ( SWITCH usage )
local oGantt,var_Column,var_Column1,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Column = oGantt.Columns.Add("Value") var_Column.Width = 24 var_Column1 = oGantt.Columns.Add("SWITCH - statment") var_Column1.ComputedField = "%0 switch ('not found', 1,2,3,4,5,7,8,9,11,13,14)" var_Column1.ToolTip = var_Column1.ComputedField var_Items = oGantt.Items var_Items.AddItem(0) var_Items.AddItem(1) var_Items.AddItem(2) oGantt.EndUpdate() |
722 |
I have a large collection of constant values and using or operator is a time consuming (IN usage). Is there any way to increase the speed to check if a value maches the collection
local oGantt,var_Column,var_Column1,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Column = oGantt.Columns.Add("Value") var_Column.Width = 24 var_Column1 = oGantt.Columns.Add("IN - statment") var_Column1.ComputedField = "%0 in (1,2,3,4,5,7,8,9,11,13,14) ? 'found' : ''" var_Column1.ToolTip = var_Column1.ComputedField var_Items = oGantt.Items var_Items.AddItem(0) var_Items.AddItem(1) var_Items.AddItem(2) oGantt.EndUpdate() |
721 |
How can I use the CASE statement (CASE usage)
local oGantt,var_Column,var_Column1,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Column = oGantt.Columns.Add("Value") var_Column.Width = 24 var_Column1 = oGantt.Columns.Add("CASE - statment") var_Column1.ComputedField = "%0 case (default:'not found';1:%0;2:2*%0;3:3*%0;4:4*%0;5:5*%0;7:'Seven';8:'Eight';9:'Nine';11:'Eleven';13:'Thirtheen';14:'Fourtheen')" var_Column1.ToolTip = var_Column1.ComputedField var_Items = oGantt.Items var_Items.AddItem(0) var_Items.AddItem(1) var_Items.AddItem(2) oGantt.EndUpdate() |
720 |
How can I use the CASE statement (CASE usage)
local oGantt,var_Column,var_Column1,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() var_Column = oGantt.Columns.Add("Value") var_Column.Width = 24 var_Column1 = oGantt.Columns.Add("CASE - statment") var_Column1.ComputedField = "%0 case (default:'not found';1:'One';2:'Two';3:'Three';4:'Four';5:'Five';7:'Seven';8:'Eight';9:'Nine';11:'Eleven';13:'Thirtheen';14:'Fourtheen')" var_Column1.ToolTip = var_Column1.ComputedField var_Items = oGantt.Items var_Items.AddItem(0) var_Items.AddItem(1) var_Items.AddItem(2) oGantt.EndUpdate() |
719 |
Is is possible to use HTML tags to display in the filter caption
local oGantt,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.FilterBarPromptVisible = true oGantt.FilterBarCaption = "This is a bit of text being displayed in the filter bar." oGantt.Columns.Add("") var_Items = oGantt.Items var_Items.AddItem("Item 1") var_Items.AddItem("Item 2") var_Items.AddItem("Item 3") oGantt.EndUpdate() |
718 |
How can I find the number of items after filtering
|
717 |
How can I change the filter caption
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 12801 /*exFilterPromptWords | exFilterPromptContainsAll*/ oGantt.FilterBarPromptPattern = "london robert" oGantt.FilterBarCaption = "<r>Found: ... " var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
716 |
While using the filter prompt is it is possible to use wild characters
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 16 oGantt.FilterBarPromptPattern = "lon* seat*" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
715 |
How can I list all items that contains any of specified words, not necessary at the beggining
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 4610 /*exFilterPromptStartWords | exFilterPromptContainsAny*/ oGantt.FilterBarPromptPattern = "london davolio" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
714 |
How can I list all items that contains any of specified words, not strings
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 12802 /*exFilterPromptWords | exFilterPromptContainsAny*/ oGantt.FilterBarPromptPattern = "london nancy" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
713 |
How can I list all items that contains all specified words, not strings
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 12801 /*exFilterPromptWords | exFilterPromptContainsAll*/ oGantt.FilterBarPromptPattern = "london robert" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
712 |
I've noticed that the filtering by prompt is not case sensitive, is is possible to make it case sensitive
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 258 /*exFilterPromptCaseSensitive | exFilterPromptContainsAny*/ oGantt.FilterBarPromptPattern = "Anne" // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
711 |
Is it possible to list only items that ends with any of specified strings
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 4 oGantt.FilterBarPromptColumns = "0" oGantt.FilterBarPromptPattern = "Fuller" // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
710 |
Is it possible to list only items that ends with any of specified strings
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 4 oGantt.FilterBarPromptColumns = "0" oGantt.FilterBarPromptPattern = "Fuller" // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
709 |
Is it possible to list only items that starts with any of specified strings
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 3 oGantt.FilterBarPromptColumns = "0" oGantt.FilterBarPromptPattern = "An M" // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
708 |
Is it possible to list only items that starts with specified string
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 3 oGantt.FilterBarPromptColumns = "0" oGantt.FilterBarPromptPattern = "A" // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
707 |
How can I specify that the list should include any of the seqeunces in the pattern
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 2 oGantt.FilterBarPromptPattern = "london seattle" // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
706 |
How can I specify that all sequences in the filter pattern must be included in the list
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptType = 1 oGantt.FilterBarPromptPattern = "london manager" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
705 |
How do I change at runtime the filter prompt
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptPattern = "london manager" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
704 |
How do I specify to filter only a single column when using the filter prompt
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPromptColumns = "2,3" oGantt.FilterBarPromptPattern = "london" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
703 |
How do I change the prompt or the caption being displayed in the filter bar
local oGantt,var_Chart,var_Column,var_Column1,var_Columns oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true oGantt.FilterBarPrompt = "changed" var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") oGantt.EndUpdate() |
702 |
How do I enable the filter prompt feature
local h0,oGantt,var_Chart,var_Column,var_Column1,var_Columns,var_Items oGantt = form.EXGANTTCHARTACTIVEXCONTROL1.nativeObject oGantt.BeginUpdate() // oGantt.Chart.PaneWidth(true) = 0 var_Chart = oGantt.Chart with (oGantt) TemplateDef = [dim var_Chart] TemplateDef = var_Chart Template = [var_Chart.PaneWidth(True) = 0] endwith oGantt.ColumnAutoResize = true oGantt.ContinueColumnScroll = false oGantt.MarkSearchColumn = false oGantt.SearchColumnIndex = 1 oGantt.FilterBarPromptVisible = true var_Columns = oGantt.Columns // var_Columns.Add("Name").Width = 96 var_Column = var_Columns.Add("Name") with (oGantt) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 96] endwith // var_Columns.Add("Title").Width = 96 var_Column1 = var_Columns.Add("Title") with (oGantt) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.Width = 96] endwith var_Columns.Add("City") var_Items = oGantt.Items h0 = var_Items.AddItem("Nancy Davolio") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Andrew Fuller") // var_Items.CellCaption(h0,1) = "Vice President, Sales" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Vice President, Sales"] endwith // var_Items.CellCaption(h0,2) = "Tacoma" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Tacoma"] endwith // var_Items.SelectItem(h0) = true with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.SelectItem(h0) = True] endwith h0 = var_Items.AddItem("Janet Leverling") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Kirkland" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Kirkland"] endwith h0 = var_Items.AddItem("Margaret Peacock") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "Redmond" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Redmond"] endwith h0 = var_Items.AddItem("Steven Buchanan") // var_Items.CellCaption(h0,1) = "Sales Manager" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Manager"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Michael Suyama") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Robert King") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith h0 = var_Items.AddItem("Laura Callahan") // var_Items.CellCaption(h0,1) = "Inside Sales Coordinator" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Inside Sales Coordinator"] endwith // var_Items.CellCaption(h0,2) = "Seattle" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "Seattle"] endwith h0 = var_Items.AddItem("Anne Dodsworth") // var_Items.CellCaption(h0,1) = "Sales Representative" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,1) = "Sales Representative"] endwith // var_Items.CellCaption(h0,2) = "London" with (oGantt) TemplateDef = [dim var_Items,h0] TemplateDef = var_Items TemplateDef = h0 Template = [var_Items.CellCaption(h0,2) = "London"] endwith oGantt.EndUpdate() |
701 |
Is it possible to colour a particular column, I mean the cell's foreground color
|